home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / source / modex32 / masks.asm < prev    next >
Encoding:
Assembly Source File  |  1994-08-30  |  450 b   |  23 lines

  1.         .386p
  2.         locals
  3.         include pmc.inc
  4.  
  5. ; Mode X (320x240, 256 colors) masking values for
  6. ; functions that need them.
  7. ;
  8. ; (ykumanan)
  9. ;
  10.         @dseg
  11.  
  12.         public  LeftClipPlaneMask
  13.         public  RightClipPlaneMask
  14.  
  15. ; Plane masks for clipping left and right edges of rectangle.
  16. LeftClipPlaneMask       db      00fh,00eh,00ch,008h
  17. RightClipPlaneMask      db      00fh,001h,003h,007h
  18.  
  19.         ends
  20.  
  21.         end
  22.  
  23.